home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 27 / Mac Magazin and MacEasy Magazine CD - Issue 27.iso / Grafik & Text / Sans-Faute⁄Grammaire ƒ / Adaptateurs / spécial HyperCard / Sources des scripts (anglais) / Vérif. HC Champs "cherchables" < prev    next >
Text File  |  1996-02-20  |  391b  |  16 lines

  1. tell application "HyperCard 2.3"
  2.     activate current stack
  3.     set num to 1
  4.     repeat number of card field times
  5.         if not dontSearch of card field num then
  6.             set texttoCheck to card field num as styled text
  7.             tell application "Sans-Faute/Grammaire 2"
  8.                 set textchecked to Checking texttoCheck
  9.             end tell
  10.             set card field num to textchecked
  11.         end if
  12.         set num to num + 1
  13.     end repeat
  14. end tell
  15.  
  16.